#!/bin/bash # It is recommended to test the script on a local machine for its purpose and effects. # ManageEngine Desktop Central will not be responsible for any # damage/loss to the data/setup based on the behavior of the script # Description - Script to copy a file from web url to a local path in Mac machine # Changes - Please Change the url and destination path in the script # Configuration - COMPUTER # Destination path of the file destinationPath="/Users/Shared/FileMaker/FileMaker Pro Advanced/18.0/LicenseCert.fmcert" # Url from which the file should be downloaded url="https://shefa-public.s3.amazonaws.com/LicenseCert.fmcert" # command to download curl -o "$destinationPath" "$url"